home *** CD-ROM | disk | FTP | other *** search
/ Mastering Computers 3 / Mastering Computers Vol 3.iso / Win95 / Fun&Utils / MFCMSG.EXE / APPDOCS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-01  |  468 b   |  16 lines

  1. ////////////////////////////////////////////////////////////////
  2. // APPDOCS Copyright 1995 Microsoft Systems Journal. 
  3. // If this program works, it was written by Paul DiLascia.
  4. // If not, I don't know who wrote it.
  5. // 
  6. // CAppDocs sends messages to all open documents.
  7. //
  8. class CAppDocs {
  9. private:
  10.    BOOL SendCmdMsg(UINT nID, int nCode, void* pExtra);
  11. public:
  12.    BOOL SendNotify(UINT nID, int nCode, NMHDR* pNMHDR);
  13.    BOOL SendCommand(UINT nID);
  14. };
  15.  
  16.